This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:
~Frank Chuweverakoi 20.Aug.03 09:25 PM a Web browser Applications Development6.0.2 CF1zSeries
I got a LotusScript agent to parse a XML document. The XML document is badly generated, so I need to turn off the XML input validation.
After upgrading to Domino R6.02 does the agent no longer working. The error message is:
“An unexpexted error was encountered - Error 4602: DOM parser operation failed at line number 35”
The code at line 35 is:
31: Set domParser = session.CreateDOMParser
32: Call domParser.setinput(xml_in)
33: domparser.InputValidationOption = 0
34: domParser.AddXMLDeclNode = False
35: domParser.Process
36: Set docNode = domParser.Document
I read in the Fix List database for Domino R6.02:
SPR# AYOG5FKPDF - XML parsers now read in correct default information from DTD even when validation is disabled.
Maybe there is a connection between the SPR and the failure, I don’t know. But is there anyone else who got a similar problem ?